Binaries Delivery
interface BinariesDelivery
Delivers Chromium binaries to the specific directory.
This class is responsible for locating and obtaining of the binaries. If the binaries are distributed in a compressed form, it must decompress them and perform any other necessary post-processing.
For example (pseudocode):
class SharedDriveDelivery implements BinariesDelivery {
void deliverTo(Path chromiumDir) {
Path downloadedArchive = SharedNetworkDrive.download("jxbrowser-win64.gz");
Gzip.extract(downloadedArchive, chromiumDir);
}
}
...
ChromiumBinaries.deliverTo(chromiumDir, new SharedDriveDelivery());
Content copied to clipboard
Since
7.35